@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*=====================================
            ALL COMMON STYLE
======================================*/

* {
    margin: 0px;
    padding: 0px;
    outline: 0px;
}

/*===== VARIABLES CSS =====*/

:root {
    --header-height: 3rem;
    /*========== Colors ==========*/
    --main-color: var(--brand-color);
    --brand-color: #3b3d58;
    --main-grident: linear-gradient(#2a0c1b, #661e45);
    --heading-color: #48455a;
    --main-color-alt: #8b254d;
    --title-color: #393939;
    --text-color: #707070;
    --text-color-light: #a6a6a6;
    --header-color: #ffffff;
    --container-color: #ffffff;
    /*========== Font and typography ==========*/
    --body-font: "Poppins", sans-serif;
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== Margines ==========*/
    --mb-1: 0.5rem;
    --mb-2: 1rem;
    --mb-3: 1.5rem;
    --mb-4: 2rem;
    --mb-5: 2.5rem;
    --mb-6: 3rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 768px) {
    :root {
        --biggest-font-size: 4rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: 0.875rem;
        --smaller-font-size: 0.813rem;
        --brand-color: #3b3d58;
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
span,
label {
    margin: 0;
}

ul {
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

/*========== BASE ==========*/

*,
::before,
::after {
    box-sizing: border-box;
}

body {
    color: #1d1c1c;
    font-size: 13px;
    /* font-family: "Poppins", sans-serif; */
    font-family: 'Roboto', sans-serif;
    line-height: 26px;
}

img {
    vertical-align: middle;
    width: 100%;
    height: auto;
}

a:hover {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

html,
body {
    scroll-behavior: smooth;
}

/* button:focus {
    outline: none;
    font-size: 11px;
} */

.bg-white {
    background-color: #fff !important;
}

/* =====================================================CUSTOME BUTTON========================= */

/* =====================================action button======================== */

a.action-btn {
    background: #fff;
    padding: 3px;
    margin: 2px;
    text-align: center;
    border-radius: 2px;
}

.c-edit {
    color: #deb901;
}

.c-edit:hover {
    color: #dcbf2e;
}

.c-delete {
    color: #f00;
}

.c-delete:hover {
    color: rgb(167, 34, 34);
}

.c-approved {
    color: #058c0f;
}

.c-approved:hover {
    color: #11991a;
}

.multi-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =====================================action button======================== */

/* ================================================NOTUFY BATCH===================================== */

/* ========================================================top button================ */

.top-icon {
    padding: 0px 3px;
    border-radius: 4px;
    color: var(--white-color) !important;
}

.top-icon:hover {
    background-color: var(--brand-color) !important;
}
.top-icon:hover {
    background-color: var(--brand-color) !important;
}

.top-icon .dropdown-item {
    color: var(--white-color);
}

.top-icon:hover .dropdown-item {
    background-color: var(--brand-color) !important;
    color: var(--white-color);
}
/* ==============================================input======================== */

.form-control:focus {
    box-shadow: 0 0 5px 0rem rgb(90 90 90 / 38%);
    /* border: var(--title-color); */
}

/* ============================canva================================ */

canvas#chart {
    display: block;
    width: 100%;
    height: 250px;
}

/* ===============================================button====================== */

.dropdown-button {
    background: #ddd;
    padding: 0px 10px;
    border-radius: 3px;
}

.btn_gray {
    background: linear-gradient(#f8f8f8, #e3e3e3);
    font-size: 11px;
    color: #444;
    padding: 0 10px;
    border: #c6c7c7 1px solid;
    text-shadow: 1px 1px 0px #fff;
    margin-right: 5px;
}

.btn_gray:hover {
    background: linear-gradient(#e3e3e3, #f8f8f8);
    -moz-box-shadow: 0 0 3px #aaa;
    -webkit-box-shadow: 0 0 3px#aaa;
    box-shadow: 0 0 3px #aaa;
}

.btn_blue {
    background: linear-gradient(#30a9d2, #0d63a3);
    font-size: 11px;
    padding: 0 10px;
    color: #fff;
    border: #093868 1px solid;
    text-shadow: 1px 1px 0px #333;
    margin-right: 5px;
}

.btn_blue:hover {
    background: linear-gradient(#30a9d2, #077aa0);
    -moz-box-shadow: 0 0 3px #aaa;
    -webkit-box-shadow: 0 0 3px#aaa;
    box-shadow: 0 0 3px #aaa;
}

.btn_orange {
    background: linear-gradient(#e79234, #b92f08);
    font-size: 11px;
    padding: 0 10px;
    color: #fff;
    border: #9f2b0c 1px solid;
    text-shadow: 1px 1px 0px #333;
    margin-right: 5px;
}

.btn_orange:hover {
    background: linear-gradient(#e79234, #b15e00);
    -moz-box-shadow: 0 0 3px #aaa;
    -webkit-box-shadow: 0 0 3px#aaa;
    box-shadow: 0 0 3px #aaa;
}

/* =============================================bootstrap model================= */

button.btn-close:focus {
    box-shadow: none;
}

.modal-body {
    background: #fff;
}

.close-btn span {
    background: #ddd;
    padding: 2px 5px;
    border-radius: 2px;
    color: #92392a;
}

/* =======================================form text editor================ */
.loading_button {
    font-size: 12px;
}

.swal-button {
    padding: 2px 20px !important;
}

a.paginate_button {
    padding: 0px 6px;
    background: #e2e4ff;
    margin: 3px;
    color: #707479;
    cursor: pointer;
}

a.paginate_button.current {
    background: #eeeeee;
}

li {
    margin: 0px;
    padding: 0px;
    line-height: 20px;
}

.data_preloader {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background: white;
    padding-top: 2px;
    border-radius: 3px;
    opacity: 0.7;
    color: black;
    width: 100%;
    height: 100%;
    display: none;
}

tr.clickable_row {
    cursor: pointer;
}

.data_preloader {
    text-align: center;
    font-size: 12px;
}

.data_preloader h6 {
    font-weight: 600;
    margin-top: 100px;
}

/* Add purchase table */
span.product_name {
    font-size: 12px;
}
span.product_code {
    font-size: 10px;
    font-weight: 600;
}
span.product_variant {
    font-size: 10px;
    font-weight: 700;
}

.add_button {
    cursor: pointer;
}
a.dashboard_icon {
    padding: 3px 0px !important;
    border-radius: 4px;
}
label {
    font-size: 12px;
}
.t {
    padding-bottom: 41px !important;
}

a#print_report {
    margin-top: 1em;
}

.tp {
    color: #3cb7dd;
}

.text-1 {
    color: #064492 !important;
}
.btn-1 {
    color: #fff;
    background-color: #064492;
    border-color: #064492;
}
.bg-1 {
    background-color: #064492;
}

.btn_secondary {
    background: linear-gradient(#aecad3, #6c757d);
    font-size: 11px;
    padding: 0 10px;
    color: #fff;
    border: #9bacbd 1px solid;
    text-shadow: 1px 1px 0px #333;
    margin-right: 5px;
}

.btn_primary {
    background: linear-gradient(#0853a1, #212529f2);
    font-size: 11px;
    padding: 0 10px;
    color: #fff;
    border: #9bacbd 1px solid;
    text-shadow: 1px 1px 0px #333;
    margin-right: 5px;
}

.text-hover {
    font-weight: 600;
}

.text-hover:hover {
    font-weight: 600;
    color: white !important;
}

.red-label-notice {
    color: red !important;
    font-size: 9px !important;
}

.special_text{
    font-weight: 500;
    font-size: 15px;
}

/* .bdr-red {border: 1px solid #ff7992!important;}  */
/* lee h_ */
